Termination Proof Script

Consider the TRS R consisting of the rewrite rules
1:    minus(x,0)  → x
2:    minus(s(x),s(y))  → minus(x,y)
3:    quot(0,s(y))  → 0
4:    quot(s(x),s(y))  → s(quot(minus(x,y),s(y)))
There are 3 dependency pairs:
5:    MINUS(s(x),s(y))  → MINUS(x,y)
6:    QUOT(s(x),s(y))  → QUOT(minus(x,y),s(y))
7:    QUOT(s(x),s(y))  → MINUS(x,y)
The approximated dependency graph contains 2 SCCs: {5} and {6}. Hence the TRS is terminating.
Tyrolean Termination Tool  (0.01 seconds)   ---  May 3, 2006